home *** CD-ROM | disk | FTP | other *** search
- Path: news.uh.edu!usenet
- From: Sensarn <txs53132@bayou.uh.edu>
- Newsgroups: comp.lang.c++
- Subject: Re: 132x50 textmode
- Date: 15 Mar 1996 03:59:34 GMT
- Organization: AEtna Insurance Agency
- Message-ID: <4iapv6$mfu@masala.cc.uh.edu>
- References: <4i9r3m$muv@oslo-nntp.eunet.no>
- NNTP-Posting-Host: sip-16661.public-dialups.uh.edu
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1 (Windows; U; 16bit)
-
- blarsen@login.eunet.no (Bjorn Larsen) wrote:
- >Can anyone tell me how to set 132x50 text mode with C or c++ or asm ??
- >I have a ati mach 64 card..
- >In the reference it says 010ah = 132x50 ?
- >But how can i set it ??
- >
- >
-
- You need VESA for that mode (try it anyway -- that's what I do):
-
- asm {
- mov ax,0x4f02
- mov bx,0x10a
- int 0x10
- }
-
- --
- ______________________________
-
- Steven Sensarn
- E-Mail - txs53132@bayou.uh.edu
- ______________________________
-
-
-